docs: mark base interface as private
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Tue, 21 Jan 2014 00:50:38 +0000 (19:50 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Tue, 21 Jan 2014 17:41:16 +0000 (12:41 -0500)
gtk/deprecated/gtkactivatable.h
gtk/gtkactionable.h
gtk/gtkstyleprovider.h

index 393038623873955a0601dfad0d21bdec2adcbaa3..2fa825ad7388532eccc050e0f77567bd53d8ab40 100644 (file)
@@ -54,8 +54,11 @@ typedef struct _GtkActivatableIface GtkActivatableIface;
 
 struct _GtkActivatableIface
 {
+  /*< private >*/
   GTypeInterface g_iface;
 
+  /*< public >*/
+
   /* virtual table */
   void   (* update)                   (GtkActivatable *activatable,
                                       GtkAction      *action,
index 15fc61719d4c1923dc1e23d05a85578664a679b9..4501d9b5ff40c19556915c19a185e438c993f772 100644 (file)
@@ -38,8 +38,11 @@ typedef struct _GtkActionable                               GtkActionable;
 
 struct _GtkActionableInterface
 {
+  /*< private >*/
   GTypeInterface g_iface;
 
+  /*< public >*/
+
   const gchar * (* get_action_name)             (GtkActionable *actionable);
   void          (* set_action_name)             (GtkActionable *actionable,
                                                  const gchar   *action_name);
index 57fef53a24221fa937ca4d3764dda21f3b919bc8..cb0960ff3bddddcf27c033ab67022ee9202360c3 100644 (file)
@@ -92,8 +92,11 @@ typedef struct _GtkStyleProvider GtkStyleProvider; /* dummy typedef */
  */
 struct _GtkStyleProviderIface
 {
+  /*< private >*/
   GTypeInterface g_iface;
 
+  /*< public >*/
+
   GtkStyleProperties * (* get_style) (GtkStyleProvider *provider,
                                       GtkWidgetPath    *path);